home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HAM Radio 1997
/
HAM Radio 1997.iso
/
vcls
/
date
/
adxprot.int
< prev
next >
Wrap
Text File
|
1996-04-08
|
2KB
|
81 lines
{$G+,X+,F+}
{Conditional defines that may affect this unit}
{$I AWDEFINE.INC}
{*********************************************************}
{* ADXPROT.PAS 1.01 *}
{* Copyright (c) TurboPower Software 1995 *}
{* All rights reserved. *}
{*********************************************************}
unit ADXProt;
interface
uses
SysUtils, WinTypes, WinProcs, Messages,
Classes, Graphics, Controls,
Forms, Dialogs, StdCtrls,
AdMisc, AdProtcl;
type
TProtocolOptions = class(TForm)
GeneralOptions: TGroupBox;
gWriteFail: TComboBox;
Label1: TLabel;
gHonorDirectory: TCheckBox;
gIncludeDirectory: TCheckBox;
gRTSLowForWrite: TCheckBox;
gAbortNoCarrier: TCheckBox;
ZmodemOptions: TGroupBox;
zOptionOverride: TCheckBox;
zSkipNoFile: TCheckBox;
zRecover: TCheckBox;
z8K: TCheckBox;
zFileManagment: TComboBox;
Label2: TLabel;
OK: TButton;
Cancel: TButton;
KermitOptions: TGroupBox;
AsciiOptions: TGroupBox;
Label3: TLabel;
kBlockLen: TEdit;
Label5: TLabel;
kWindows: TEdit;
Label6: TLabel;
kTimeout: TEdit;
Label7: TLabel;
sInterCharDelay: TEdit;
Label8: TLabel;
sInterLineDelay: TEdit;
sCRTrans: TComboBox;
Label9: TLabel;
Label10: TLabel;
sLFTrans: TComboBox;
Label11: TLabel;
sEOFTimeout: TEdit;
procedure CancelClick(Sender: TObject);
procedure OKClick(Sender: TObject);
private
FProtocol : TApdProtocol;
Executed : Boolean;
protected
function GetProtocol : TApdProtocol;
procedure SetProtocol(NewProtocol : TApdProtocol);
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
function Execute: Boolean;
property Protocol : TApdProtocol
read GetProtocol write SetProtocol;
end;
var
ProtocolOptions: TProtocolOptions;